home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-11-11 | 396 b | 24 lines |
- #!smake
-
- include $(ROOT)/usr/include/make/commondefs
-
- # debugging option
- LCOPTS = -g
- #OPTIMIZER= -O2
-
- LLDLIBS = -lgl
- # override the prototypes macro in commondefs: if you want
- # prototyping turned on, comment out the next line.
- PROTOTYPES=
-
- CFILES = main.c
-
- TARGETS = igl2Dwrap
-
- default all:$(TARGETS)
-
- include $(COMMONRULES)
-
- $(TARGETS): $(OBJECTS)
- $(CCF) $(OBJECTS) $(LDFLAGS) -o $(TARGETS)
-